home *** CD-ROM | disk | FTP | other *** search
- PROGRAM SPELLUP2; { SPELL CHECKER DICTIONARY UPDATE }
- {
- Update the file SPELLER.LIS (spelling dictionary) by adding words
- contained in an alphabetical file "filename.MIS". SPELLUPD.COM and
- SPELLER.LIS should be in the current directory. The prior file SPELLER.LIS
- is renamed to SPELLER.LI$ and a new SPELLER.LIS is created.
-
- Version SPELLUP2 changes: In this version of SPELLUPD the command line may
- include a second parameter. If it does then the file named in the second
- parameter is updated instead of the default SPELLER.LIS. This allows for
- using an alternate dictionary with SPELLER2.EXE and updating the alternate
- dictionary with this program also. In this version of SPELLUPD the program
- does NOT make a backup of the word list being updated and the new word list
- replaces the present list by making the changes dynamicly to the file. This
- allows the updated file to replace the old file so that a single floppy disk
- can be used for the update. Also in this version the new word list word
- is checked for equal to the word in the spelling list. If they are EQUAL then
- the word is deleted from the spelling list. This allows for correcting the
- spelling list by deleting incorrect words if they are found.
- SPELLUP2 is converted for Turbo 4.0.
-
- J. Leeson March 29, 1988
-
- }
-
- CONST
- Bufsize = 16384;
- Size : word = Bufsize;
- Listsize = 4096;
- ListArraySize = 4130; {Listsize + 34}
- VAR
- List : array[1..ListArraySize] of char;
- NewWordsBuf : array[1..Listsize] of char;
- Active, Ahead : array[1..Bufsize] of char;
- WordList : File; {untyped for block read/write}
- NewWords : text; {the new words to add}
- NRP, NWP : longint; {seek variables}
- ListIndex, ActiveIndex : integer; {indeces to arrays}
- Result : word; {number of records read/written}
- WordListName, NewWordsName : string;
-
- ListWord, NewWord : string;
- Done : boolean;
- EndActive, EndAhead : boolean;
- CR : char;
- LF : char;
-
- { ************************************************************************ }
- { ******** Initialize the buffers and buffer variables ******************* }
- { ************************************************************************ }
-
- procedure Initialize;
- begin
- CR := chr(13); LF := chr(10);
- NRP := 0; NWP := 0; {note: These are zero orig variables}
- ListIndex := 1; ActiveIndex := 1;
- BlockRead(WordList, Active, Size, Result);
- NRP := NRP + Result; {note: Result is one orig so NRP always
- points to next zero orig byte to read}
- if Result = Size then begin
- EndActive := False;
- BlockRead(WordList, Ahead, Size, Result);
- if Result = Size then EndAhead := false else EndAhead := true;
- NRP := NRP + Result;
- end else EndActive := true;
- end;
-
- { ************************************************************************ }
- { ******** Get a word from the list of new words or return nul *********** }
- { ************************************************************************ }
-
- procedure GetNewWord;
- begin
- if not eof(NewWords) then Readln (NewWords, NewWord)
- else NewWord := '';
- end;
-
- { ************************************************************************ }
- { ** Shuffle the read buffers : move Ahead to Active and refill Ahead **** }
- { ************************************************************************ }
-
- procedure PushBuf;
- begin
- EndActive := EndAhead;
- Active := Ahead;
- Seek (WordList, NRP);
- BlockRead (WordList, Ahead, Size, Result);
- NRP := NRP + Result;
- if Result = Size then EndAhead := false else EndAhead := true;
- ActiveIndex := 1;
- end;
-
- { ************************************************************************ }
- { ** Extract a word from the Active buffer and check for end of buffer *** }
- { ************************************************************************ }
-
- procedure GetListWord;
- VAR
- EOW : boolean;
- I : integer;
- temp : char;
- begin
- ListWord := '';
- EOW := false;
- while not EOW do begin
- if ActiveIndex > Bufsize then begin
- if EndActive then begin {should never happen}
- EOW := true;
- exit;
- end else PushBuf;
- end;
- temp := Active[ActiveIndex];
- ActiveIndex := ActiveIndex+1;
- if (temp=LF) or (temp=chr(26)) or (temp=chr(0)) then EOW := true
- else if temp <> CR then ListWord := ListWord + temp;
- end; {while}
- end;
-
- { ************************************************************************ }
- { ********** Put a word into the List array and update WordList ********** }
- { ************************************************************************ }
-
- Procedure Stuff (Aword : string);
- Var x : word;
- i : integer;
- Temp : string;
- begin
- Temp := Aword + CR + LF;
- x := length (Temp);
- for I := 1 to x do begin
- List[ListIndex] := Temp[I];
- ListIndex := ListIndex + 1;
- end;
- if ListIndex > Listsize then begin
- Seek (WordList, NWP);
- BlockWrite (WordList, List, Listsize);
- NWP := NWP + Listsize;
- for I := 1 to ListIndex - Listsize do List[I] := List[Listsize + I];
- ListIndex := ListIndex - Listsize;
- end;
- end;
-
- { ************************************************************************ }
- { *********** Copy the rest of WordList to the output file *************** }
- { ************************************************************************ }
-
- Procedure CopyList;
- begin
- Stuff (ListWord);
- Repeat
- if ListIndex > Listsize then begin
- Listindex := 1;
- Seek (WordList, NWP);
- BlockWrite (WordList, List, Listsize);
- NWP := NWP + Listsize;
- end;
- if ActiveIndex > Bufsize then PushBuf;
- List[ListIndex] := Active[ActiveIndex];
- ActiveIndex := ActiveIndex + 1;
- ListIndex := ListIndex + 1;
- Until (List[ListIndex-1] = chr(26)) or (List[ListIndex-1] = chr(0));
- Done := true;
- end;
-
- { ************************************************************************ }
- { *********** Copy the rest of NewWords to the output file *************** }
- { ************************************************************************ }
-
- Procedure CopyNew;
- begin
- Stuff (NewWord);
- While not EOF (NewWords) do begin
- Readln (NewWords, NewWord);
- Stuff (NewWord);
- end;
- Done := true;
- end;
-
- { ************************************************************************ }
- { ************************ Main Program ******************************** }
- { ************************************************************************ }
-
- begin
-
- if ParamCount = 0 then begin
- Writeln ('Enter the fully qualified name of');
- Writeln ('the file where the list of words to');
- Writeln ('be added to the dictionary file is');
- Writeln ('located (eg: d:path\name.MIS)');
- Writeln;
- Readln (NewWordsName);
- WordListName := '';
- writeln ('Enter the name of the dictionary');
- writeln ('file to be updated.');
- writeln ('(Default is SPELLER.LIS)');
- writeln;
- Readln (WordListName);
- if WordListName = '' then WordListName := 'SPELLER.LIS';
- end
- else begin
- NewWordsName := ParamStr (1);
- if ParamCount =1 then WordListName := 'SPELLER.LIS'
- else WordListName := ParamStr (2);
- end;
- Writeln ('Opening file : ', NewWordsName);
- Assign (NewWords, NewWordsName);
- SetTextBuf (NewWords, NewWordsBuf);
- {$I-}
- Reset (NewWords);
- {$I+}
- If IOResult <> 0 then begin
- Writeln; Writeln ('File error in opening ', WordListName);
- exit;
- end;
- Writeln ('Opening file: ', WordListName);
- Assign (WordList, WordListName);
- {$I-}
- Reset (WordList, 1);
- {$I+}
- If IOResult <> 0 then begin
- Writeln; Writeln ('File error in opening ', WordListName);
- exit;
- end;
- if SizeOf (NewWords) > Bufsize then begin
- Writeln; Writeln ('List of new words file is too large for');
- Writeln ('update. Split it into files no larger');
- Writeln ('than 16K bytes.');
- Writeln; Writeln ('Program terminating.');
- Close (NewWords);
- Exit;
- end;
- Write ('UPDATING'); WRITELN; WRITELN;
-
- Initialize;
- Done := false;
- GetNewWord;
- GetListWord;
- repeat
- if (ListWord='') and (NewWord='') then Done := true
- else begin
- if ListWord = '' then CopyNew;
- if NewWord = '' then CopyList;
- if not done then begin
- if ListWord < NewWord then begin
- Stuff (ListWord);
- GetListWord;
- end else begin
- if ListWord = NewWord then begin
- GetListWord;
- writeln ('Deleting word ', NewWord);
- end else Stuff (NewWord);
- GetNewWord;
- end;
- end;
- end;
- until Done;
-
- Close (NewWords);
- ListWord := chr(26)+chr(0);
- Stuff (ListWord);
- Seek (WordList, NWP);
- BlockWrite (WordList, List, ListIndex);
- Close (WordList);
- End.